DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T> Class / Find Method
The key value to search for.

In This Topic
    Find Method (Index<T>)
    In This Topic

    Finds items with the specified key value.

    Implements IIndexScanner(T).Find(object)

    Syntax
    'Declaration
     
    Public Function Find( _
       ByVal key As Object _
    ) As IndexQuery(Of T)
    public IndexQuery<T> Find( 
       object key
    )

    Parameters

    key
    The key value to search for.

    Return Value

    An object enumerating items having the specified key value.
    See Also